home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr37 / bnu_x.zip / BNUUTIL.ZIP / FUTIL.ZIP / MAKEFILE < prev   
Text File  |  1989-06-29  |  611b  |  38 lines

  1. #
  2. # Makefile for FUTIL
  3. #
  4. # Assumes NDMAKE 4.50 or a compatible MAKE utility
  5. #
  6.  
  7. .asm.obj:
  8.     ${AS} ${AFLAGS} $*.asm;
  9.  
  10. OBJS=futil.obj
  11. VPATH=
  12.  
  13. # Uncomment and comment out the appropriate section ...
  14.  
  15. # Following is the MASM version
  16. #
  17. #AS=masm
  18. #LD=link
  19. #AFLAGS=/ML /W2 /Zi
  20. #LFLAGS=/CO/MAP/LI/NOI
  21. #
  22. #futil.com: ${OBJS}
  23. #    ${LD} ${LFLAGS} ${OBJS},futil.exe;
  24. #    exe2bin futil.exe futil.com
  25. #    del futil.exe
  26. #
  27. #
  28. # Following is the TASM version
  29. # Comment out the above and uncomment below ...
  30. #
  31. AS=tasm
  32. LD=tlink
  33. AFLAGS=/ml /zi
  34. LFLAGS=/t /v /m
  35.  
  36. futil.com: ${OBJS}
  37.     ${LD} ${LFLAGS} ${OBJS}
  38.